home *** CD-ROM | disk | FTP | other *** search
- program Dbfsql;
-
- uses
- Forms,
- Dbftosql in 'DBFTOSQL.PAS' {DBF2SQL},
- Memoform in 'MEMOFORM.PAS' {FieldAssign},
- Progform in 'PROGFORM.PAS' {ConvForm},
- Paredit in 'PAREDIT.PAS' {DataParams};
-
- {$R *.RES}
-
- begin
- Application.Title := 'BDE Convert';
- Application.CreateForm(TDBF2SQL, DBF2SQL);
- Application.CreateForm(TFieldAssign, FieldAssign);
- Application.CreateForm(TConvForm, ConvForm);
- Application.CreateForm(TDataParams, DataParams);
- Application.Run;
- end.
-